home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / plotting / contour / contour.lha / Contour / plot.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-08-28  |  890 b   |  25 lines

  1. #define MAXCHAR 1000            /* Maximum no of chars in a line  */
  2. #define MAXPTS  1000            /* Maximum no of points in an array */
  3. #define MAXTYPE 100             /* Maximum no of line/marker types  */
  4. #define MAXKEY  15              /* maximum no of keywords */
  5.  
  6. #define esc '\033'              /* ESC character (ascii) */
  7. #define PSFILE "dataplot.ps"    /* postscript file */
  8. #define CTFILE "image.cont"     /* single contour file */
  9.  
  10. char *term;                      /* terminal type */
  11. char xlabel[MAXCHAR];            /* x-label */
  12. char ylabel[MAXCHAR];            /* y-label */
  13. char toplabel[MAXCHAR];          /* top label */
  14. char printer[MAXCHAR];           /* printer type */
  15.  
  16. /* plotting options */
  17. int    grid,equalscale,postscript,printplot;
  18. int    xticks,yticks;
  19. int    linetypes;
  20. int    contlabel;
  21. int    landscape;
  22. int    joincurve;
  23. char   *joinlevel;
  24. double scale;
  25.